home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / os2 / pccts.zip / PROTO.H < prev    next >
C/C++ Source or Header  |  1992-12-08  |  619b  |  27 lines

  1. #ifdef __STDC__
  2. char *strdup(char *);
  3. struct _ast *zzmk_ast(struct _ast *, int, ...);
  4. struct _ast *bottom(struct _ast *);
  5. struct _ast *defineArgs(struct _ast *, Sym **);
  6. void error(char *);
  7. void error1(char *, char *);
  8. void warn(char *);
  9. void warn1(char *, char *);
  10. Sym *addsym(int, char *,int , struct _ast *, struct _ast *);
  11. long strtol(char *, char**, int);
  12. #else
  13. char *strdup();
  14. struct _ast *zzmk_ast();
  15. struct _ast *bottom();
  16. struct _ast *defineArgs();
  17. void error();
  18. void error1();
  19. void warn();
  20. void warn1();
  21. Sym *addsym();
  22. long strtol();
  23. #endif
  24.  
  25. extern Sym *Globals;
  26. extern Sym *Params;
  27.